home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / cmdity / clicker.lha / Clicker / Source / prefs.c < prev    next >
C/C++ Source or Header  |  1996-05-17  |  649b  |  23 lines

  1. /*  File:         prefs.c
  2.  *  Created:      20-10-95
  3.  *  Updated:      17-05-96
  4.  *  Version:      1.3
  5.  *  Project:      Clicker
  6.  *  Owner:        Jeroen Vermeulen
  7.  *  Requirements: KickStart V39+
  8.  *  Legal:        PD
  9.  *  Status:       Release
  10.  */
  11.  
  12. #include <exec/types.h>
  13.  
  14. #include "prefs.h"
  15.  
  16. /* This global volatile variable enables asynchronous communication between
  17.  * processes.  New settings for sample volume, click length and pitch will be
  18.  * stored into this struct, so the key-click routine will feed the new data into
  19.  * its audio request on the next key click.
  20.  */
  21. volatile struct SoundSettings ClickPrefs = { FALSE, TRUE, 400, 50, 5 };
  22.  
  23.